home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / CPAL.ZIP;1 / LIBMAIN.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-14  |  512 b   |  30 lines

  1. #include <windows.h>
  2. #include "paluser.hpp"
  3. HANDLE hMod= 0;
  4.  
  5. extern "C" int EXPPLUS LibMain (
  6.                HANDLE   hModule,
  7.                WORD     ,// wDataSeg,
  8.                WORD     ,// cbHeapSize,
  9.                 LPSTR    // lpszCmdLine
  10.                 )
  11. {
  12. #ifdef DEBUG
  13.     OutputDebugString("test Libmain\r\n");
  14. #endif
  15.  
  16.     hMod = hModule;
  17.     return TRUE;
  18. }
  19.  
  20. extern "C" int EXPPLUS WEP(int /* bSystemExit */)
  21. {
  22. #ifdef DEBUG
  23.     OutputDebugString( "test WEP\r\n" );
  24. #endif
  25.  
  26.    return 1;
  27. }
  28.  
  29.  
  30.